home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cgazv5n5.arc / EVENT.H < prev    next >
Text File  |  1991-09-23  |  2KB  |  42 lines

  1. /*
  2.  * Event1.h - Header file for the Event application for Windows 3.0
  3.  *
  4.  *
  5.  * 04/17/91 1.00 - Kanhom Ng 
  6.  *
  7.  * ---------------------------------------------------------
  8.  * Copyright (C) 1991 Kanhom Ng.  All rights reserved.
  9.  * ---------------------------------------------------------
  10.  *
  11.  *    P.O. Box 391176, Mountain View, CA 94039
  12.  *
  13.  */    
  14.  
  15. #define SHOWERR(f,h,s) if ( !(f) ) { MessageBox( h, s, "Event", MB_OK ); }
  16.  
  17. #define IDM_NEW        100     /* new menu item id */
  18. #define IDM_DELETE     101     /* delete menu item id */
  19. #define IDM_EXIT       102     /* exit item id */
  20.  
  21. #define ID_DATE        100     /* control id for Date */
  22. #define ID_TIME        101     /* control id for Time */
  23. #define ID_DESC        102     /* control id for Description */
  24. #define ID_CMDLINE     103     /* control id for Command Line */
  25. #define ID_RUNRECORDER 104     /* control id for
  26.                                     "Run Recorder" checkbox */
  27. #define ID_FILE        105     /* control id for
  28.                                     recorder file name */
  29. #define ID_MACRONAME   106     /* control id for
  30.                                     recorder macro name */
  31.  
  32. typedef struct
  33. {
  34.     BOOL   fRecorder;    /* do we replay a macro? */
  35.     char   szFile[80];   /* recorder file name */
  36.     char   szMacro[80];  /* macro's name in the recorder file */
  37.     BOOL   fCalled;      /* boolean indicator if it is called */
  38.     struct tm  tm;       /* time structure for the event */
  39.     char   szDesc[ 40 ]; /* description string */
  40.     char   szCmd[ 60 ];  /* command line string */
  41. } EVENTREC, FAR * LPEVENTREC, *PEVENTREC;
  42.